DicomObjects.NET.V8
DicomObjects Namespace / DicomDataSet Class / Send Method / Send(String,Int32,String,String,IEnumerable<String>) Method

Network address (as dotted notation or resolvable name) to which the image is to be sent.

Port on which remote application is listening.

Name of remote Application Entity.

Name to quote for this Application Entity

A list of offered Transfer Syntaxes




Send(String,Int32,String,String,IEnumerable<String>) Method
Sends a DicomDataSet to a remote DICOM application, with control over the set of transfer synatxes offered.
Syntax
'Declaration
 
Public Overloads Function Send( _
   ByVal Node As String, _
   ByVal Port As Integer, _
   ByVal CallingAE As String, _
   ByVal CalledAE As String, _
   ByVal OfferedTS As IEnumerable(Of String) _
) As Integer
 
'Usage
 
Dim instance As DicomDataSet
Dim Node As String
Dim Port As Integer
Dim CallingAE As String
Dim CalledAE As String
Dim OfferedTS As IEnumerable(Of String)
Dim value As Integer
 
value = instance.Send(Node, Port, CallingAE, CalledAE, OfferedTS)

Parameters

Node

Network address (as dotted notation or resolvable name) to which the image is to be sent.

Port

Port on which remote application is listening.

CallingAE

Name of remote Application Entity.

CalledAE

Name to quote for this Application Entity

OfferedTS

A list of offered Transfer Syntaxes

Return Value

The status as returned by the remote application. Zero indicates success.

Remarks
This method negotiates an association, sends one dataset over it, and then closes it. DICOM does not allow SCPs to draw any conclusion about the relationships between images based on the opening and closing of associations, so this should never be a problem (apart from slight network inefficiency). However, there are several badly written applications in the world, which incorrectly assume that the end of an association indicates the end of a series or a study etc., and if interfacing to such a faulty implementation, it is possible to send multiple images on one association by using DicomAssociation object, and its SendInstances methods.
Requirements

Target Platforms: .NET CLR 4.0 or higher

See Also